home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJLSR200.ZIP / utils / scandoc.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  1995-04-02  |  129 b   |  11 lines

  1. #!/bin/ksh
  2.  
  3. find . -name "*.[cs]" -print \
  4. | while read fn
  5. do
  6.   if [ ! -f ${fn%.*}.txh ]
  7.   then
  8.     echo $fn
  9.   fi
  10. done
  11.